home *** CD-ROM | disk | FTP | other *** search
/ QRZ! Ham Radio 8 / QRZ Ham Radio Callsign Database - Volume 8.iso / mac / files / dsp / dspkgctr.z / dspkgctr / gcc / Makefile < prev    next >
Makefile  |  1992-06-08  |  27KB  |  756 lines

  1. # Makefile for GNU C compiler.
  2. #   Copyright (C) 1987, 1988 Free Software Foundation, Inc.
  3.  
  4. #    $Id: Makefile,v 1.30 92/04/03 20:50:34 pete Exp $
  5.  
  6. #This file is part of GNU CC.
  7.  
  8. #GNU CC is free software; you can redistribute it and/or modify
  9. #it under the terms of the GNU General Public License as published by
  10. #the Free Software Foundation; either version 1, or (at your option)
  11. #any later version.
  12.  
  13. #GNU CC is distributed in the hope that it will be useful,
  14. #but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16. #GNU General Public License for more details.
  17.  
  18. #You should have received a copy of the GNU General Public License
  19. #along with GNU CC; see the file COPYING.  If not, write to
  20. #the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  21.  
  22.  
  23. # Variables that exist for you to override.
  24. # See below for how to change them for certain systems.
  25.  
  26. #CFLAGS = -g $(XCFLAGS)
  27. CFLAGS = $(XCFLAGS) -O
  28. CC = cc
  29. #CC = /usr/local/gnu/bin/gcc
  30. BISON = bison
  31. BISONFLAGS = -v
  32. AR = ar
  33. SHELL = /bin/sh
  34. # on sysV, define this as cp.
  35. INSTALL = install -c
  36.  
  37. # for use in rt-test
  38. DSPINSTALL = mv
  39.  
  40. # Compiler to use for compiling gnulib.
  41. # OLDCC should not be the GNU C compiler.
  42. OLDCC = cc
  43.  
  44. # CFLAGS for use with OLDCC, for compiling gnulib.
  45. # NOTE: -O does not work on some Unix systems!
  46. # On them, you must take it out.
  47. CCLIBFLAGS=-O
  48.  
  49. # CFLAGS for use with OLDCC, for compiling hard-params.
  50. HARD_PARAMS_FLAGS=
  51.  
  52. # Directory where sources are, from where we are.
  53. srcdir = .
  54. # Directory in which to put the executable for the command `gcc'
  55. bindir = $(prefix)/usr/local/bin
  56. # Directory in which to put the subprograms used by the compiler.
  57. libdir = $(prefix)/usr/local
  58. # Directory in which to put man pages.
  59. mandir = $(prefix)/usr/local/man/man1
  60. # Number to put in man-page filename.
  61. manext = 1
  62.  
  63. # Additional system libraries to link with.
  64. CLIB=
  65.  
  66. # Change this to a null string if obstacks are installed in the
  67. # system library.
  68. OBSTACK=obstack.o
  69.  
  70. # Directory to link to, when using the target `maketest'.
  71. DIR = ../gcc
  72.  
  73. # End of variables for you to override.
  74.  
  75.  
  76. # Variables you should change for certain systems.
  77.  
  78. # These are what you would need on HPUX:
  79. # CFLAGS = -Wc,-Ns2000 -Wc,-Ne700 -Wc,-Np300
  80. # If you are using the GNU assembler and linker on HPUX,
  81. # add -I../hp-include to CFLAGS.
  82. # -g is desirable in CFLAGS, but a compiler bug in HPUX version 5
  83. # bites whenever tree.def, rtl.def or machmode.def is included
  84. # (ie., on every source file).
  85. # If you have a floating point accelerator, you might want -lsetjmp as well.
  86. # CCLIBFLAGS = -Wc,-Ns2000 -Wc,-Ne700 -O
  87. # HARD_PARAMS_FLAGS = -Wc,-Ns2000 -Wc,-Ne700
  88. # For CCLIBFLAGS you might want to specify the switch that
  89. # forces only 68000 instructions to be used.
  90.  
  91. # On the Sequent, you may need to set CCLIBFLAG to empty.
  92.  
  93. # On the 3b1, this line may help you compile gnulib
  94. # if you already have a prior version of gcc installed.
  95. # CCLIBFLAGS = -B/usr/local/lib/gcc- -tp -Wp,-traditional
  96.  
  97. # If you are making gcc for the first time, and if you are compiling it with
  98. # a non-gcc compiler, and if your system doesn't have a working alloca() in any
  99. # of the standard libraries (as is true for HP/UX or Genix),
  100. # then get alloca.c from GNU Emacs and un-comment the following line:
  101. # ALLOCA = alloca.o
  102. # But don't do that if compiling using GCC.
  103.  
  104. # If your system has alloca() in /lib/libPW.a, un-comment the following line:
  105. # CLIB= -lPW
  106.  
  107. # On a pyramid, you need to uncomment the following line:
  108. # CLIB = -lc /usr/.attlib/libPW.a
  109.  
  110. # If your system's malloc() routine fails for any reason (as it does on
  111. # certain versions of Genix), try getting the files
  112. # malloc.c and getpagesize.h from GNU Emacs and un-comment the following line:
  113. # MALLOC = malloc.o
  114.  
  115. # If you are running GCC on an Apollo (SR10.x),
  116. # go into a Berkeley environment and use this:
  117. # CFLAGS = -g -A nansi -A cpu,3000 -A runtype,bsd4.3 -A systype,any -DSHORT_ENUM_BUG
  118. # (Says vasta@apollo.com.)
  119.  
  120.  
  121. # Dependency on obstack, alloca, malloc or whatever library facilities
  122. # are not installed in the system libraries.
  123. LIBDEPS= $(OBSTACK) $(ALLOCA) $(MALLOC)
  124.  
  125. # How to link with both our special library facilities
  126. # and the system's installed libraries.
  127. LIBS = $(OBSTACK) $(ALLOCA) $(MALLOC) $(CLIB)
  128.  
  129. # Specify the directories to be searched for header files.
  130. # Both . and srcdir are used, in that order,
  131. # so that tm.h and config.h will be found in the compilation
  132. # subdirectory rather than in the source directory.
  133. INCLUDES = -I. -I$(srcdir) -I$(srcdir)/config
  134. SUBDIR_INCLUDES = -I.. -I../$(srcdir) -I../$(srcdir)/config
  135.  
  136. # Always use -I$(srcdir)/config when compiling.
  137. .c.o:
  138.     $(CC) -c $(CFLAGS) $(CPPFLAGS) $(INCLUDES) $<
  139.  
  140. # Language-specific object files for C.
  141. C_OBJS = c-parse.tab.o c-decl.o c-typeck.o c-convert.o
  142.  
  143. # Language-specific object files for C++.
  144. # (These are not yet released.)
  145. CPLUS_OBJS = cplus-parse.o cplus-decl.o cplus-typeck.o \
  146.    cplus-cvt.o cplus-search.o cplus-lex.o \
  147.    cplus-class.o cplus-init.o cplus-method.o
  148.  
  149. # Language-independent object files.
  150. OBJS = toplev.o version.o tree.o print-tree.o stor-layout.o fold-const.o \
  151.  rtl.o rtlanal.o expr.o stmt.o expmed.o explow.o optabs.o varasm.o \
  152.  symout.o dbxout.o sdbout.o emit-rtl.o insn-emit.o \
  153.  integrate.o jump.o cse.o loop.o flow.o stupid.o combine.o \
  154.  regclass.o local-alloc.o global-alloc.o reload.o reload1.o caller-save.o \
  155.  insn-peep.o final.o recog.o insn-recog.o insn-extract.o insn-output.o
  156.  
  157. # Files to be copied away after each stage in building.
  158. STAGE_GCC=gcc
  159. STAGESTUFF = *.o insn-flags.h insn-config.h insn-codes.h \
  160.  insn-output.c insn-recog.c insn-emit.c insn-extract.c insn-peep.c \
  161.  stamp-flags.h stamp-config.h stamp-codes.h \
  162.  stamp-output.c stamp-recog.c stamp-emit.c stamp-extract.c stamp-peep.c \
  163.  genemit genoutput genrecog genextract genflags gencodes genconfig genpeep \
  164.  cc1 cpp cccp # cc1plus
  165.  
  166. # Members of gnulib.
  167. LIBFUNCS = _eprintf _builtin_new _builtin_New _builtin_del \
  168.    _umulsi3 _mulsi3 _udivsi3 _divsi3 _umodsi3 _modsi3 \
  169.    _lshrsi3 _lshlsi3 _ashrsi3 _ashlsi3 \
  170.    _divdf3 _muldf3 _negdf2 _adddf3 _subdf3 _cmpdf2 \
  171.    _fixunsdfsi _fixdfsi _floatsidf _truncdfsf2 _extendsfdf2 \
  172.    _addsf3 _negsf2 _subsf3 _cmpsf2 _mulsf3 _divsf3
  173.  
  174. # Library members defined in gnulib2.c.
  175. LIB2FUNCS = _adddi3 _subdi3 _muldi3 _divdi3 _moddi3 _udivdi3 _umoddi3 _negdi2 \
  176.     _anddi3 _iordi3 _xordi3 _lshrdi3 _lshldi3 _ashldi3 _ashrdi3 _one_cmpldi2  \
  177.     _bdiv _cmpdi2 _ucmpdi2 _fixunsdfdi _fixdfdi _floatdidf _varargs
  178.  
  179. # Header files that are made available to programs compiled with gcc.
  180. USER_H = stddef.h stdarg.h assert.h va-*.h limits.h
  181.  
  182. # The files that "belong" in CONFIG_H are deliberately omitted
  183. # because having them there would not be useful in actual practice.
  184. # All they would do is cause complete recompilation every time
  185. # one of the machine description files is edited.
  186. # That may or may not be what one wants to do.
  187. # If it is, rm *.o is an easy way to do it.
  188. CONFIG_H = config.h tm.h
  189. # CONFIG_H =
  190. RTL_H = rtl.h rtl.def machmode.def
  191. TREE_H = tree.h real.h tree.def machmode.def
  192. CPLUS_TREE_H = $(TREE_H) cplus-tree.h c-tree.h
  193.  
  194. # Note that dependencies on obstack.h are not written
  195. # because that file is not part of GCC.
  196. # Dependencies on gvarargs.h are not written
  197. # because all that file does, when not compiling with GCC,
  198. # is include the system varargs.h.
  199.  
  200. all: config.status gnulib gcc cc1 cpp float.h gnulib2 # cc1plus
  201.  
  202. dsp: config.status gcc cc1 cpp        # DSP
  203.  
  204. lang-c: config.status gnulib gcc cc1 cpp gnulib2
  205. # lang-cplus: config.status gnulib gcc cc1plus cpp gnulib2
  206.  
  207. config.status:
  208.     @echo You must configure gcc.  Look at the INSTALL file for details.
  209.     @false
  210.  
  211. doc: $(srcdir)/cpp.info $(srcdir)/gplus.info $(srcdir)/gcc.info
  212.  
  213. compilations: ${OBJS}
  214.  
  215. gcc: gcc.o version.o $(LIBDEPS)
  216.     $(CC) $(CFLAGS) $(LDFLAGS) -o gccnew gcc.o version.o $(LIBS)
  217. # Go via `gccnew' to avoid `file busy' if $(CC) is `gcc'.
  218.  
  219. cc1: $(C_OBJS) $(OBJS) $(LIBDEPS)
  220.     $(CC) $(CFLAGS) $(LDFLAGS) -o cc1 $(C_OBJS) $(OBJS) $(LIBS)
  221.  
  222. cc1plus: $(CPLUS_OBJS) $(OBJS) $(LIBDEPS)
  223.     $(CC) $(CFLAGS) $(LDFLAGS) -o cc1plus $(CPLUS_OBJS) $(OBJS) $(LIBS)
  224.  
  225. #Library of arithmetic subroutines
  226. # Don't compile this with gcc!
  227. # (That would cause most arithmetic functions to call themselves.)
  228. gnulib: gnulib.c $(CONFIG_H)
  229.     -rm -f stamp-gnulib2
  230.     rm -f tmpgnulib gnulib; \
  231.     for name in $(LIBFUNCS); \
  232.     do \
  233.       echo $${name}; \
  234.       rm -f $${name}.c; \
  235.       cp $(srcdir)/gnulib.c $${name}.c; \
  236.       $(OLDCC) $(CCLIBFLAGS) $(INCLUDES) -c -DL$${name} $${name}.c; \
  237.       $(AR) qc tmpgnulib $${name}.o; \
  238.       rm -f $${name}.[co]; \
  239.     done
  240.     if [ -f /usr/bin/ranlib -o -f /bin/ranlib ] ; then ranlib tmpgnulib ;fi
  241. # Actually build it in tmpgnulib above, then rename now,
  242. # so that gnulib itself remains nonexistent if compilation is aborted.
  243.     mv tmpgnulib gnulib
  244. # On HPUX, if you are working with the GNU assembler and linker,
  245. # the previous two command lines must be replaced with the following line.
  246. # No change is needed here if you are using the HPUX assembler and linker.
  247. #    ../hp-bin/hpxt tmpgnulib gnulib
  248.  
  249. gnulib2: stamp-gnulib2;
  250. stamp-gnulib2: gnulib2.c gnulib cc1 gcc cpp $(CONFIG_H)
  251.     for name in $(LIB2FUNCS); \
  252.     do \
  253.       echo $${name}; \
  254.       ./gcc -B./ -fstrength-reduce -O $(INCLUDES) $(GNULIB2_CFLAGS) -c -DL$${name} $(srcdir)/gnulib2.c -o $${name}.o; \
  255.       $(AR) rc gnulib $${name}.o; \
  256.       rm -f $${name}.o; \
  257.     done
  258.     if [ -f /usr/bin/ranlib -o -f /bin/ranlib ] ; then  ranlib gnulib ;fi
  259. # On HPUX, if you are working with the GNU assembler and linker,
  260. # the previous line must be commented out.
  261. # No change is needed here if you are using the HPUX assembler and linker.
  262.     touch stamp-gnulib2
  263.  
  264. float.h:
  265. # Originally, we used `make' rather than $(MAKE), to avoid propagating
  266. # a CC=gcc command option.  However, since hard-params is now made
  267. # with $(OLDCC) explicitly, this is no longer important.
  268. # However, $(MAKE) fails on some systems where it isn't defined.
  269. # `make' has the disadvantage of sometimes running the system's make,
  270. # instead of GNU make.  And the system's make might not support VPATH.
  271. # However, the compilation of hard-params should not need to use VPATH,
  272. # due to the explicit use of `$(srcdir)'.
  273.     make hard-params
  274.     -./hard-params -f > float.h
  275.  
  276. # Compile hard-params with standard cc.  It avoids some headaches.
  277. hard-params: hard-params.o
  278.     $(OLDCC) $(HARD_PARAMS_FLAGS) $(LDFLAGS) hard-params.o -o $@
  279. hard-params.o: $(srcdir)/hard-params.c
  280.     -cp $(srcdir)/hard-params.c . > /dev/null 2>&1
  281.     $(OLDCC) $(HARD_PARAMS_FLAGS) $(CPPFLAGS) -DNO_SC -c hard-params.c
  282.  
  283. # C language specific files.
  284.  
  285. c-parse.tab.o : $(srcdir)/c-parse.tab.c $(CONFIG_H) $(TREE_H) c-parse.h c-tree.h input.h
  286.     $(CC) $(CFLAGS) $(CPPFLAGS) $(INCLUDES) -c $(srcdir)/c-parse.tab.c
  287. $(srcdir)/c-parse.tab.c : $(srcdir)/c-parse.y
  288.     $(BISON) $(BISONFLAGS) $(srcdir)/c-parse.y -o $@
  289.  
  290. c-decl.o : c-decl.c $(CONFIG_H) $(TREE_H) c-tree.h c-parse.h flags.h
  291. c-typeck.o : c-typeck.c $(CONFIG_H) $(TREE_H) c-tree.h flags.h
  292. c-convert.o : c-convert.c $(CONFIG_H) $(TREE_H)
  293.  
  294. # C++ language specific files.
  295.  
  296. cplus-parse.o : $(srcdir)/cplus-parse.c $(CONFIG_H) $(CPLUS_TREE_H) flags.h
  297.     $(CC) -c $(CFLAGS) $(INCLUDES) \
  298.   -DPARSE_OUTPUT=\"$(PWD)/cplus-parse.output\" \
  299.   `echo $(srcdir)/cplus-parse.c | sed 's,^\./,,'`
  300.  
  301. $(srcdir)/cplus-parse.h $(srcdir)/cplus-parse.c : $(srcdir)/cplus-parse.y
  302.     @echo expect 49 shift/reduce conflicts and 4 reduce/reduce conflicts
  303.     $(BISON) $(BISONFLAGS) -d -o $(srcdir)/cplus-parse.c $(srcdir)/cplus-parse.y
  304.  
  305. cplus-lex.o : cplus-lex.c $(CONFIG_H) $(CPLUS_TREE_H) $(srcdir)/cplus-parse.h
  306. cplus-decl.o : cplus-decl.c $(CONFIG_H) $(CPLUS_TREE_H) flags.h
  307. cplus-typeck.o : cplus-typeck.c $(CONFIG_H) $(CPLUS_TREE_H) flags.h
  308. cplus-class.o : cplus-class.c $(CONFIG_H) $(CPLUS_TREE_H)
  309. cplus-init.o : cplus-init.c $(CONFIG_H) $(CPLUS_TREE_H)
  310. cplus-method.o : cplus-method.c $(CONFIG_H) $(CPLUS_TREE_H)
  311. cplus-cvt.o : cplus-cvt.c $(CONFIG_H) $(CPLUS_TREE_H)
  312. cplus-search.o : cplus-search.c $(CONFIG_H) $(CPLUS_TREE_H)
  313. new-method.o : new-method.c $(CONFIG_H) $(CPLUS_TREE_H)
  314.  
  315. # Language-independent files.
  316.  
  317. gcc.o: gcc.c $(CONFIG_H)
  318.     $(CC) $(CFLAGS) $(INCLUDES) \
  319.   -DSTANDARD_STARTFILE_PREFIX=\"$(libdir)/dsp/lib/\" \
  320.   -DSTANDARD_EXEC_PREFIX=\"$(libdir)/dsp/bin/gcc-\" -c \
  321.   `echo $(srcdir)/gcc.c | sed 's,^\./,,'`
  322.  
  323. version.o: version.c
  324. obstack.o: obstack.c
  325.  
  326. tree.o : tree.c $(CONFIG_H) $(TREE_H) flags.h
  327. print-tree.o : print-tree.c $(CONFIG_H) $(TREE_H)
  328. stor-layout.o : stor-layout.c $(CONFIG_H) $(TREE_H) $(RTL_H)
  329. fold-const.o : fold-const.c $(CONFIG_H) $(TREE_H)
  330. toplev.o : toplev.c $(CONFIG_H) $(TREE_H) flags.h input.h
  331.  
  332. rtl.o : rtl.c $(CONFIG_H) $(RTL_H)
  333.  
  334. rtlanal.o : rtlanal.c $(CONFIG_H) $(RTL_H)
  335.  
  336. varasm.o : varasm.c $(CONFIG_H) $(TREE_H) $(RTL_H) flags.h expr.h \
  337.    insn-codes.h hard-reg-set.h
  338. stmt.o : stmt.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h  \
  339.    insn-flags.h insn-config.h insn-codes.h expr.h regs.h hard-reg-set.h recog.h
  340. expr.o : expr.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h  \
  341.    insn-flags.h insn-codes.h expr.h insn-config.h recog.h
  342. expmed.o : expmed.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h  \
  343.    insn-flags.h insn-codes.h expr.h insn-config.h recog.h
  344. explow.o : explow.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h expr.h insn-codes.h
  345. optabs.o : optabs.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h  \
  346.    insn-flags.h insn-codes.h expr.h insn-config.h recog.h
  347. symout.o : symout.c $(CONFIG_H) $(TREE_H) $(RTL_H) symseg.h gdbfiles.h
  348. dbxout.o : dbxout.c $(CONFIG_H) $(TREE_H) $(RTL_H) flags.h
  349. sdbout.o : sdbout.c $(CONFIG_H) $(TREE_H) $(RTL_H)
  350.  
  351. emit-rtl.o : emit-rtl.c $(CONFIG_H) $(RTL_H) regs.h insn-config.h real.h
  352.  
  353. integrate.o : integrate.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h expr.h \
  354.    insn-flags.h insn-codes.h
  355.  
  356. jump.o : jump.c $(CONFIG_H) $(RTL_H) flags.h regs.h
  357. stupid.o : stupid.c $(CONFIG_H) $(RTL_H) regs.h hard-reg-set.h
  358.  
  359. cse.o : cse.c $(CONFIG_H) $(RTL_H) regs.h hard-reg-set.h flags.h real.h
  360. loop.o : loop.c $(CONFIG_H) $(RTL_H) insn-config.h insn-codes.h \
  361.    regs.h hard-reg-set.h recog.h flags.h expr.h
  362. flow.o : flow.c $(CONFIG_H) $(RTL_H) basic-block.h regs.h hard-reg-set.h
  363. combine.o : combine.c $(CONFIG_H) $(RTL_H) flags.h  \
  364.    insn-config.h regs.h basic-block.h recog.h
  365. regclass.o : regclass.c $(CONFIG_H) $(RTL_H) hard-reg-set.h flags.h \
  366.    basic-block.h regs.h insn-config.h recog.h 
  367. local-alloc.o : local-alloc.c $(CONFIG_H) $(RTL_H) flags.h basic-block.h regs.h \
  368.    hard-reg-set.h insn-config.h recog.h
  369. global-alloc.o : global-alloc.c $(CONFIG_H) $(RTL_H) flags.h  \
  370.    basic-block.h regs.h hard-reg-set.h insn-config.h
  371.  
  372. reload.o : reload.c $(CONFIG_H) $(RTL_H) flags.h \
  373.    reload.h recog.h hard-reg-set.h insn-config.h regs.h
  374. reload1.o : reload1.c $(CONFIG_H) $(RTL_H) flags.h  \
  375.    reload.h regs.h hard-reg-set.h insn-config.h basic-block.h recog.h
  376. caller-save.o : caller-save.c $(CONFIG_H) $(RTL_H) flags.h \
  377.    reload.h regs.h hard-reg-set.h insn-config.h basic-block.h recog.h
  378. final.o : final.c $(CONFIG_H) $(RTL_H) flags.h regs.h recog.h conditions.h \
  379.    gdbfiles.h insn-config.h real.h output.h
  380. recog.o : recog.c $(CONFIG_H) $(RTL_H)  \
  381.    regs.h recog.h hard-reg-set.h insn-config.h real.h
  382.  
  383. # Normally this target is not used; but it is used if you
  384. # define ALLOCA=alloca.o.  In that case, you must get a suitable alloca.c
  385. # from the GNU Emacs distribution.
  386. # Note some machines won't allow $(CC) without -S on this source file.
  387. alloca.o:    alloca.c
  388.     $(CC) $(CFLAGS) -S `echo $(srcdir)/alloca.c | sed 's,^\./,,'`
  389.     as alloca.s -o alloca.o
  390.  
  391. # Now the source files that are generated from the machine description.
  392.  
  393. .PRECIOUS: insn-config.h insn-flags.h insn-codes.h \
  394.   insn-emit.c insn-recog.c insn-extract.c insn-output.c insn-peep.c
  395.  
  396. # The following pair of rules has this effect:
  397. # genconfig is run only if the md has changed since genconfig was last run;
  398. # but the file insn-config.h is touched only when its contents actually change.
  399.  
  400. # Each of the other insn-* files is handled by a similar pair of rules.
  401.  
  402. insn-config.h: stamp-config.h ;
  403. stamp-config.h : md genconfig
  404.     ./genconfig md > tmp-config.h
  405.     $(srcdir)/move-if-change tmp-config.h insn-config.h
  406.     touch stamp-config.h
  407.  
  408. insn-flags.h: stamp-flags.h ;
  409. stamp-flags.h : md genflags
  410.     ./genflags md > tmp-flags.h
  411.     $(srcdir)/move-if-change tmp-flags.h insn-flags.h
  412.     touch stamp-flags.h
  413.  
  414. insn-codes.h: stamp-codes.h ;
  415. stamp-codes.h : md gencodes
  416.     ./gencodes md > tmp-codes.h
  417.     $(srcdir)/move-if-change tmp-codes.h insn-codes.h
  418.     touch stamp-codes.h
  419.  
  420. insn-emit.o : insn-emit.c $(CONFIG_H) $(RTL_H) expr.h real.h insn-codes.h \
  421.   insn-config.h insn-flags.h
  422.     $(CC) $(CFLAGS) $(INCLUDES) -c insn-emit.c
  423.  
  424. insn-emit.c: stamp-emit.c ;
  425. stamp-emit.c : md genemit
  426.     ./genemit md > tmp-emit.c
  427.     $(srcdir)/move-if-change tmp-emit.c insn-emit.c
  428.     touch stamp-emit.c
  429.  
  430. insn-recog.o : insn-recog.c $(CONFIG_H) $(RTL_H) insn-config.h real.h recog.h
  431.     $(CC) $(CFLAGS) $(INCLUDES) -c insn-recog.c
  432.  
  433. insn-recog.c: stamp-recog.c ;
  434. stamp-recog.c : md genrecog
  435.     ./genrecog md > tmp-recog.c
  436.     $(srcdir)/move-if-change tmp-recog.c insn-recog.c
  437.     touch stamp-recog.c
  438.  
  439. insn-extract.o : insn-extract.c $(CONFIG_H) $(RTL_H)
  440.     $(CC) $(CFLAGS) $(INCLUDES) -c insn-extract.c
  441.  
  442. insn-extract.c: stamp-extract.c ;
  443. stamp-extract.c : md genextract
  444.     ./genextract md > tmp-extract.c
  445.     $(srcdir)/move-if-change tmp-extract.c insn-extract.c
  446.     touch stamp-extract.c
  447.  
  448. insn-peep.o : insn-peep.c $(CONFIG_H) $(RTL_H) regs.h real.h
  449.     $(CC) $(CFLAGS) $(INCLUDES) -c insn-peep.c
  450.  
  451. insn-peep.c: stamp-peep.c ;
  452. stamp-peep.c : md genpeep
  453.     ./genpeep md > tmp-peep.c
  454.     $(srcdir)/move-if-change tmp-peep.c insn-peep.c
  455.     touch stamp-peep.c
  456.  
  457. insn-output.o : insn-output.c $(CONFIG_H) $(RTL_H) regs.h real.h conditions.h \
  458.     hard-reg-set.h insn-config.h insn-flags.h output.h aux-output.c
  459.     $(CC) $(CFLAGS) $(INCLUDES) -c insn-output.c
  460.  
  461. insn-output.c: stamp-output.c ;
  462. stamp-output.c : md genoutput
  463.     ./genoutput md > tmp-output.c
  464.     $(srcdir)/move-if-change tmp-output.c insn-output.c
  465.     touch stamp-output.c
  466.  
  467. # Now the programs that generate those files.
  468. # $(CONFIG_H) is omitted from the deps of the gen*.o
  469. # because these programs don't really depend on anything 
  470. # about the target machine.  They do depend on config.h itself,
  471. # since that describes the host machine.
  472.  
  473. genconfig : genconfig.o rtl.o $(LIBDEPS)
  474.     $(CC) $(CFLAGS) $(LDFLAGS) -o genconfig genconfig.o rtl.o $(LIBS)
  475.  
  476. genconfig.o : genconfig.c $(RTL_H) config.h
  477.  
  478. genflags : genflags.o rtl.o $(LIBDEPS)
  479.     $(CC) $(CFLAGS) $(LDFLAGS) -o genflags genflags.o rtl.o $(LIBS)
  480.  
  481. genflags.o : genflags.c $(RTL_H) config.h
  482.  
  483. gencodes : gencodes.o rtl.o $(LIBDEPS)
  484.     $(CC) $(CFLAGS) $(LDFLAGS) -o gencodes gencodes.o rtl.o $(LIBS)
  485.  
  486. gencodes.o : gencodes.c $(RTL_H) config.h
  487.  
  488. genemit : genemit.o rtl.o $(LIBDEPS)
  489.     $(CC) $(CFLAGS) $(LDFLAGS) -o genemit genemit.o rtl.o $(LIBS)
  490.  
  491. genemit.o : genemit.c $(RTL_H) config.h
  492.  
  493. genrecog : genrecog.o rtl.o $(LIBDEPS)
  494.     $(CC) $(CFLAGS) $(LDFLAGS) -o genrecog genrecog.o rtl.o $(LIBS)
  495.  
  496. genrecog.o : genrecog.c $(RTL_H) config.h
  497.  
  498. genextract : genextract.o rtl.o $(LIBDEPS)
  499.     $(CC) $(CFLAGS) $(LDFLAGS) -o genextract genextract.o rtl.o $(LIBS)
  500.  
  501. genextract.o : genextract.c $(RTL_H) config.h
  502.  
  503. genpeep : genpeep.o rtl.o $(LIBDEPS)
  504.     $(CC) $(CFLAGS) $(LDFLAGS) -o genpeep genpeep.o rtl.o $(LIBS)
  505.  
  506. genpeep.o : genpeep.c $(RTL_H) config.h
  507.  
  508. genoutput : genoutput.o rtl.o $(LIBDEPS)
  509.     $(CC) $(CFLAGS) $(LDFLAGS) -o genoutput genoutput.o rtl.o $(LIBS)
  510.  
  511. genoutput.o : genoutput.c $(RTL_H) config.h
  512.  
  513. # Making the preprocessor
  514. cpp: cccp
  515.     -rm -f cpp
  516.     ln cccp cpp
  517. cccp: cccp.o cexp.o version.o $(LIBDEPS)
  518.     $(CC) $(CFLAGS) $(LDFLAGS) -o cccp cccp.o cexp.o version.o $(LIBS)
  519. cexp.o: $(srcdir)/cexp.c $(CONFIG_H)
  520.     $(CC) $(CFLAGS) $(CPPFLAGS) $(INCLUDES) -c $(srcdir)/cexp.c
  521. $(srcdir)/cexp.c: $(srcdir)/cexp.y
  522.     $(BISON) -o $(srcdir)/cexp.c $(srcdir)/cexp.y
  523. cccp.o: cccp.c $(CONFIG_H)
  524.     $(CC) $(CFLAGS) $(INCLUDES) \
  525.           -DGCC_INCLUDE_DIR=\"$(libdir)/dsp/include\" \
  526.           -DGPLUSPLUS_INCLUDE_DIR=\"$(libdir)/g++-include\" \
  527.       -c `echo $(srcdir)/cccp.c | sed 's,^\./,,'`
  528.  
  529. $(srcdir)/cpp.info: $(srcdir)/cpp.texinfo
  530.     makeinfo `echo $(srcdir)/cpp.texinfo | sed 's,^\./,,'`
  531.  
  532. $(srcdir)/gplus.info: $(srcdir)/gplus.texinfo
  533.     makeinfo `echo $(srcdir)/gplus.texinfo | sed 's,^\./,,'`
  534.  
  535. $(srcdir)/gcc.info: $(srcdir)/gcc.texinfo
  536.     makeinfo `echo $(srcdir)/gcc.texinfo | sed 's,^\./,,'`
  537.  
  538. # gnulib is not deleted because deleting it would be inconvenient
  539. # for most uses of this target.
  540. clean:
  541.     -rm -f $(STAGESTUFF) $(STAGE_GCC)
  542. # Delete the temp files made in the course of building gnulib.
  543.     -rm -f tmpgnulib
  544.     for name in $(LIBFUNCS); do rm -f $${name}.c; done
  545.     -rm -f stamp-*.[ch] tmp-*
  546.     -rm -f *.s *.s[0-9] *.co *.greg *.lreg *.combine *.flow *.cse *.jump *.rtl *.tree *.loop *.dbr *.jump2
  547.     -rm -f core float.h hard-params
  548.     -rm -f *.exp *.exe *.map *.obj
  549.  
  550. # Like clean but also delete the links made to configure gcc.
  551. # Also removes gnulib, since that is desirable if you are changing cpus.
  552. cleanconfig: clean
  553.     -rm -f tm.h aux-output.c config.h md config.status gnulib stamp-gnulib2
  554.  
  555. # Get rid of every file that's generated from some other file (except INSTALL).
  556. realclean: pcclean cleanconfig 
  557.     -rm -f cpp.aux cpp.cps cpp.fns cpp.info cpp.kys cpp.pgs cpp.tps cpp.vrs
  558. #    -rm -f cplus-parse.tab.c cplus-parse.output
  559.     -rm -f c-parse.tab.c c-parse.output c-parse.tab.output
  560.     -rm -f gnulib cexp.c TAGS 
  561.     -rm -f cpp.info* cpp.?? cpp.??s cpp.log cpp.toc cpp.*aux
  562.     -rm -f gcc.info* gcc.?? gcc.??s gcc.log gcc.toc gcc.*aux
  563.     -rm -f gplus.info* gplus.?? gplus.??s gplus.log gplus.toc gplus.*aux
  564.     -rm -f *.dvi
  565.  
  566. # Copy the DSP files into directories where they will be run.
  567. installdsp56: gccnew cc1 cpp
  568.     $(DSPINSTALL) gccnew $(INSTALLDIR)/g56k
  569.     $(DSPINSTALL) cc1 $(INSTALLDIR)/g56-cc1
  570.     $(DSPINSTALL) cpp $(INSTALLDIR)/mcpp
  571.  
  572. installdsp96: gccnew cc1 cpp
  573.     $(DSPINSTALL) gccnew $(INSTALLDIR)/g96k
  574.     $(DSPINSTALL) cc1 $(INSTALLDIR)/g96-cc1
  575.     $(DSPINSTALL) cpp $(INSTALLDIR)/mcpp
  576.  
  577. # Copy the files into directories where they will be run.
  578. install: all
  579.     -mkdir $(libdir)
  580.     -if [ -f cc1 ] ; then $(INSTALL) cc1 $(libdir)/gcc-cc1 ;fi
  581.     -if [ -f cc1plus ] ; then $(INSTALL) cc1plus $(libdir)/gcc-cc1plus ;fi
  582.     $(INSTALL) gnulib $(libdir)/gcc-gnulib
  583.     -if [ -f /usr/bin/ranlib ] ; then (cd $(libdir); ranlib gcc-gnulib) ;fi
  584.     $(INSTALL) cpp $(libdir)/gcc-cpp
  585.     $(INSTALL) gcc $(bindir)
  586.     -mkdir $(libdir)/gcc-include
  587.     -chmod ugo+rx $(libdir)/gcc-include
  588.     for file in $(USER_H); do \
  589.          for eachfile in  $(srcdir)/$${file} ; do \
  590.         $(INSTALL) $${eachfile} $(libdir)/gcc-include; \
  591.          done ; done
  592.     $(INSTALL) float.h $(libdir)/gcc-include/float.h
  593.     $(INSTALL) $(srcdir)/gvarargs.h $(libdir)/gcc-include/varargs.h
  594.     $(INSTALL) $(srcdir)/gcc.1 $(mandir)/gcc.$(manext)
  595.  
  596. # do make -f ../gcc/Makefile maketest DIR=../gcc
  597. # in the intended test directory to make it a suitable test directory.
  598. maketest:
  599.     ln -s $(DIR)/*.[chy] .
  600.     ln -s $(DIR)/config .
  601.     ln -s $(DIR)/*.def .
  602.     -rm -f =*
  603.     ln -s $(DIR)/.gdbinit .
  604.     -ln -s $(DIR)/bison.simple .
  605.     ln -s $(DIR)/config.gcc .
  606.     ln -s $(DIR)/move-if-change .
  607. # The then and else were swapped to avoid a problem on Ultrix.
  608.     if [ ! -f Makefile ] ; then ln -s $(DIR)/Makefile . ; else false; fi
  609.     -rm tm.h aux-output.c config.h md
  610.     make clean
  611. # You must then run config.gcc to set up for compilation.
  612.  
  613. bootstrap: all force
  614.     $(MAKE) stage1
  615.     $(MAKE) CC="stage1/gcc -Bstage1/" CFLAGS="-O $(CFLAGS)" libdir=$(libdir)
  616.     $(MAKE) stage2
  617.     $(MAKE) CC="stage2/gcc -Bstage2/" CFLAGS="-O $(CFLAGS)" libdir=$(libdir)
  618.  
  619. bootstrap2: force
  620.     $(MAKE) CC="stage1/gcc -Bstage1/" CFLAGS="-O $(CFLAGS)" libdir=$(libdir)
  621.     $(MAKE) stage2
  622.     $(MAKE) CC="stage2/gcc -Bstage2/" CFLAGS="-O $(CFLAGS)" libdir=$(libdir)
  623.  
  624. bootstrap3: force
  625.     $(MAKE) CC="stage2/gcc -Bstage2/" CFLAGS="-O $(CFLAGS)" libdir=$(libdir)
  626.  
  627. # Copy the object files from a particular stage into a subdirectory.
  628. stage1: force
  629.     -mkdir stage1
  630.     -mv $(STAGESTUFF) $(STAGE_GCC) stage1
  631.     -rm -f stage1/gnulib
  632.     -ln gnulib stage1 || (cp gnulib stage1 && ranlib stage1/gnulib)
  633.  
  634. stage2: force
  635.     -mkdir stage2
  636.     -mv $(STAGESTUFF) $(STAGE_GCC) stage2
  637.     -rm -f stage2/gnulib
  638.     -ln gnulib stage2 || (cp gnulib stage2 && ranlib stage2/gnulib)
  639.  
  640. stage3: force
  641.     -mkdir stage3
  642.     -mv $(STAGESTUFF) $(STAGE_GCC) stage3
  643.     -rm -f stage3/gnulib
  644.     -ln gnulib stage3 || (cp gnulib stage3 && ranlib stage3/gnulib)
  645.  
  646. stage4: force
  647.     -mkdir stage4
  648.     -mv $(STAGESTUFF) $(STAGE_GCC) stage4
  649.     -rm -f stage4/gnulib
  650.     -ln gnulib stage4 || (cp gnulib stage4 && ranlib stage4/gnulib)
  651.  
  652. TAGS: force
  653.     mkdir temp
  654.     -mv c-parse.tab.c cplus-parse.c cplus-parse.h cexp.c temp
  655.     etags *.y *.h *.c
  656.     mv temp/* .
  657.     rmdir temp
  658.  
  659. includes: force
  660.     LIB=$(libdir) ./fixincludes
  661.  
  662. #In GNU Make, ignore whether `stage*' exists.
  663. .PHONY: stage1 stage2 stage3 stage4 clean realclean TAGS bootstrap pcsetup \
  664.     pcclean
  665.  
  666. force:
  667.  
  668. # a special target which gets things ready for a pc build.
  669.  
  670. pcclean:
  671.     rm -f cpt.c cccp.h a??.c a??.obj iflags.h icodes.h iconfig.h \
  672.           hardrset.h typeclas.h bblock.h conds.h aoutput.c a??.c
  673.     ./dos2unix alloca.c
  674.     ./dos2unix config.h
  675.     ./dos2unix gcc.c
  676.     ./dos2unix gcc.h
  677.     ./dos2unix tm.h
  678.     ./dos2unix obstack.h
  679.     ./dos2unix obstack.c
  680.     ./dos2unix version.c
  681.  
  682.  
  683. pcsetup:    $(srcdir)/c-parse.tab.c insn-emit.c insn-peep.c insn-recog.c \
  684.         insn-extract.c insn-output.c insn-flags.h insn-config.h \
  685.         insn-codes.h \
  686.         $(srcdir)/cexp.c pcclean
  687.     touch cccp.h
  688.     echo -n "#define GCC_INCLUDE_DIR " >> cccp.h
  689.     echo "\"c:\\\\dsp\\\\include\"" >> cccp.h
  690.     echo -n "#define GPLUSPLUS_INCLUDE_DIR " >> cccp.h
  691.     echo "\"c:\\\\dsp\\\\include\"" >> cccp.h
  692.     rm config.h
  693.     ln -s config/xm-i386.h config.h
  694.     ln insn-flags.h iflags.h
  695.     ln insn-codes.h icodes.h
  696.     ln insn-config.h iconfig.h
  697.     ln hard-reg-set.h hardrset.h
  698.     ln typeclass.h typeclas.h
  699.     ln basic-block.h bblock.h
  700.     ln conditions.h conds.h
  701.     ln aux-output.c aoutput.c
  702.     ln alloca.c a01.c
  703.     ln c-parse.tab.c a02.c
  704.     ln c-decl.c a03.c
  705.     ln c-typeck.c a04.c
  706.     ln c-convert.c a05.c
  707.     ln toplev.c a06.c
  708.     ln version.c a07.c
  709.     ln tree.c a08.c
  710.     ln print-tree.c a09.c
  711.     ln stor-layout.c a10.c
  712.     ln fold-const.c a11.c
  713.     ln rtl.c a12.c
  714.     ln rtlanal.c a13.c
  715.     ln obstack.c a14.c
  716.     ln expr.c a15.c
  717.     ln stmt.c a16.c
  718.     ln expmed.c a17.c
  719.     ln explow.c a18.c
  720.     ln optabs.c a19.c
  721.     ln varasm.c a20.c
  722.     ln symout.c a21.c
  723.     ln dbxout.c a22.c
  724.     ln sdbout.c a23.c
  725.     ln emit-rtl.c a24.c
  726.     ln insn-emit.c a25.c
  727.     ln integrate.c a26.c
  728.     ln jump.c a27.c
  729.     ln cse.c a28.c
  730.     ln loop.c a29.c
  731.     ln flow.c a30.c
  732.     ln stupid.c a31.c
  733.     ln combine.c a32.c
  734.     ln regclass.c a33.c
  735.     ln local-alloc.c a34.c
  736.     ln global-alloc.c a35.c
  737.     ln reload.c a36.c
  738.     ln reload1.c a37.c
  739.     ln caller-save.c a38.c
  740.     ln insn-peep.c a39.c
  741.     ln final.c a40.c
  742.     ln recog.c a41.c
  743.     ln insn-recog.c a42.c
  744.     ln insn-extract.c a43.c
  745.     ln insn-output.c a44.c
  746.     ./unix2dos alloca.c
  747.     ./unix2dos config.h
  748.     ./unix2dos gcc.c
  749.     ./unix2dos gcc.h
  750.     ./unix2dos tm.h
  751.     ./unix2dos obstack.h
  752.     ./unix2dos obstack.c
  753.     ./unix2dos version.c
  754.     @ echo "all set to run make -f makefile.pc all"
  755.     @ echo "make sure *NOT* to run config.gcc dsp?6k-pc386."
  756.